home *** CD-ROM | disk | FTP | other *** search
-
-
- XXbbWW -- tthhee XX1111 uusseerr iinntteerrffaaccee wwiitthhoouutt ''bbeellllss aanndd wwhhiissttlleess''
-
- (C) 1994 Hendrik Maroske
-
- UUssee aanndd ddiissttrriibbuuttiioonn rreessttrriicctteedd ttoo tthhee ffoolllloowwiinngg::
- This program is free as long as you do not make
- money by selling it. In any other case, you are
- enforced to contact the author.
-
- I don't care if you create user interfaces with
- this program and sell tthheemm, als long as you
- do not sell this program. You are enforced to
- distribute this program in the same form
- you have received it; especially in combination
- with user interfaces that you sell.
-
- I will distribute C sources as soon as I can.
- Until then, you will have to rely on the library
- file only, sorry.
-
-
- commands.mta
- XXbbWW CCoommmmaannddss::
-
-
- FFuunnccttiioonn:: ""ss"" AAdddd SSttrriinngg VVAARR--EElleemmeenntt))
- 3 Parameters
- Syntax: s( ("VAR-Type") <Length> ("Content") );
-
- Params: VAR-Type is a string, max. 15 chars ("Name")
- Length gives the string space in bytes
- Content is a string with the content to put in
- Sample: "s"( myname 80 ("Text with spaces") );
-
- FFuunnccttiioonn:: ""ii"" AAdddd IInntteeggeerr VVAARR--EElleemmeenntt))
- 2 Parameters
- Syntax: i( ("VAR-Type") <Content> );
-
- Params: VAR-Type is a string, max. 15 chars ("Name")
- Content is an integer number to put in
- Sample: "i"( myname 1234 );
-
- FFuunnccttiioonn:: ""cc"" AAdddd CCoonnssttaanntt SSttrriinngg VVAARR--EElleemmeenntt))
- 2 Parameters
- Syntax: c( ("VAR-Type") ("Content") );
-
- Params: VAR-Type is a string, max. 15 chars ("Name")
- Content is a string with the content to put in
- Length is determined by content length
- Sample: "c"( myname ("Text with spaces") );
-
- FFuunnccttiioonn:: ""dd"" AAdddd DDoouubbllee VVAARR--EElleemmeenntt))
- 2 Parameters
- Syntax: d( ("VAR-Type") <Content> );
-
- Params: VAR-Type is a string, max. 15 chars ("Name")
- Content is a floating point number to put in
- Sample: "d"( myname 1.234 );
-
-
-